id int64 0 755k | file_name stringlengths 3 109 | file_path stringlengths 13 185 | content stringlengths 31 9.38M | size int64 31 9.38M | language stringclasses 1
value | extension stringclasses 11
values | total_lines int64 1 340k | avg_line_length float64 2.18 149k | max_line_length int64 7 2.22M | alphanum_fraction float64 0 1 | repo_name stringlengths 6 65 | repo_stars int64 100 47.3k | repo_forks int64 0 12k | repo_open_issues int64 0 3.4k | repo_license stringclasses 9
values | repo_extraction_date stringclasses 92
values | exact_duplicates_redpajama bool 2
classes | near_duplicates_redpajama bool 2
classes | exact_duplicates_githubcode bool 2
classes | exact_duplicates_stackv2 bool 1
class | exact_duplicates_stackv1 bool 2
classes | near_duplicates_githubcode bool 2
classes | near_duplicates_stackv1 bool 2
classes | near_duplicates_stackv2 bool 1
class |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
752,729 | PscCoder.hpp | Orvid_Champollion/Decompiler/PscCoder.hpp | #pragma once
#include "Coder.hpp"
namespace Decompiler {
static const char* WARNING_COMMENT_PREFIX = ";***";
/**
* @brief Write a PEX file as a PSC file.
*/
class PscCoder :
public Coder
{
public:
PscCoder(OutputWriter *writer, bool commentAsm, bool writeHeader, bool traceDecompilation, bool dumpTree,
... | 2,450 | C++ | .h | 50 | 43.26 | 109 | 0.715781 | Orvid/Champollion | 106 | 20 | 11 | LGPL-3.0 | 9/20/2024, 9:42:05 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,734 | PscDecompiler.hpp | Orvid_Champollion/Decompiler/PscDecompiler.hpp | #pragma once
#include <vector>
#include <string>
#include <fstream>
#include <map>
#include "Pex/Object.hpp"
#include "PscCodeBlock.hpp"
#include "Node/Base.hpp"
#include "Pex/DebugInfo.hpp"
namespace Decompiler {
/**
* @brief Decompiler class.
*
* This class contains the core process of the decompilation sequ... | 3,069 | C++ | .h | 73 | 37.438356 | 112 | 0.739057 | Orvid/Champollion | 106 | 20 | 11 | LGPL-3.0 | 9/20/2024, 9:42:05 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,736 | EventNames.hpp | Orvid_Champollion/Decompiler/EventNames.hpp | #pragma once
#include <vector>
#include <string>
namespace Decompiler{
namespace Skyrim {
static const std::vector<std::string> NativeClasses ={};
static const std::vector<std::string> EventNames = {
"OnAnimationEvent", // ActiveMagicEffect
"OnAnimationEventUnregistered", // ActiveMagicEffect
"OnEf... | 40,454 | C++ | .h | 1,181 | 22.887384 | 69 | 0.547337 | Orvid/Champollion | 106 | 20 | 11 | LGPL-3.0 | 9/20/2024, 9:42:05 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,738 | GuardStatement.hpp | Orvid_Champollion/Decompiler/Node/GuardStatement.hpp | #pragma once
#include <cassert>
#include <cstdint>
#include <memory>
#include "Base.hpp"
#include "FieldNodeMixin.hpp"
#include "Scope.hpp"
#include "Visitor.hpp"
namespace Node {
class GuardStatement final :
public Base,
public FieldParametersNodeMixin<0>,
public FieldBodyNo... | 876 | C++ | .h | 33 | 18.787879 | 75 | 0.593301 | Orvid/Champollion | 106 | 20 | 11 | LGPL-3.0 | 9/20/2024, 9:42:05 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,752 | EndGuard.hpp | Orvid_Champollion/Decompiler/Node/EndGuard.hpp | #pragma once
#include <cassert>
#include <cstdint>
#include <memory>
#include "Base.hpp"
#include "FieldNodeMixin.hpp"
#include "Scope.hpp"
#include "Visitor.hpp"
namespace Node {
class EndGuard final :
public Base,
public FieldParametersNodeMixin<0>
{
public:
EndGuard(si... | 754 | C++ | .h | 31 | 17.032258 | 74 | 0.581006 | Orvid/Champollion | 106 | 20 | 11 | LGPL-3.0 | 9/20/2024, 9:42:05 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,767 | CaselessCompare.h | Orvid_Champollion/Champollion/CaselessCompare.h | #include <string>
inline int caselessCompare(const char *a, const char *b, size_t len) {
#ifdef _WIN32
return _strnicmp(a, b, len);
#else
return strncasecmp(a, b, len);
#endif
}
inline int caselessCompare(const char *a, const char *b) {
#ifdef _WIN32
return _stricmp(a, b);
#else
return strcasecmp(a, b);
#endif... | 323 | C++ | .h | 15 | 19.933333 | 70 | 0.71987 | Orvid/Champollion | 106 | 20 | 11 | LGPL-3.0 | 9/20/2024, 9:42:05 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,770 | ByteSwap.hpp | Orvid_Champollion/Pex/ByteSwap.hpp | #include <type_traits>
#include <cassert>
// These are backported from STL C++23
constexpr uint16_t _Byteswap_ushort(const uint16_t _Val) noexcept {
return static_cast<unsigned short>((_Val << 8) | (_Val >> 8));
}
constexpr uint32_t _Byteswap_ulong(const uint32_t _Val) noexcept {
return (_Val << 24) |... | 1,937 | C++ | .h | 42 | 41.214286 | 110 | 0.627316 | Orvid/Champollion | 106 | 20 | 11 | LGPL-3.0 | 9/20/2024, 9:42:05 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,776 | Guard.hpp | Orvid_Champollion/Pex/Guard.hpp | #pragma once
#include <cstdint>
#include <vector>
#include "StringTable.hpp"
#include "NamedItem.hpp"
namespace Pex {
/**
* @brief Guard definition
*
* This class contains the names guard.
*
*/
class Guard :
public NamedItem {
public:
Guard() = default;
~Guard() = default;
};
typedef std::vector<G... | 336 | C++ | .h | 20 | 14.7 | 39 | 0.710611 | Orvid/Champollion | 106 | 20 | 11 | LGPL-3.0 | 9/20/2024, 9:42:05 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,787 | Binary.hpp | Orvid_Champollion/Pex/Binary.hpp | #pragma once
#include <string>
#include "Header.hpp"
#include "StringTable.hpp"
#include "DebugInfo.hpp"
#include "UserFlag.hpp"
#include "Object.hpp"
namespace Pex {
/**
* @brief Pex main data structure
*
* The Binary class reflect the content of a PEX file.
*
*/
class FileReader;
class Binary
{
public:
e... | 1,164 | C++ | .h | 50 | 19.14 | 54 | 0.703097 | Orvid/Champollion | 106 | 20 | 11 | LGPL-3.0 | 9/20/2024, 9:42:05 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,789 | print-dev.cpp | hiramvillarreal_iotpos/printing/print-dev.cpp | /**************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This... | 2,477 | C++ | .cpp | 47 | 50.531915 | 96 | 0.515052 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,790 | print-cups.cpp | hiramvillarreal_iotpos/printing/print-cups.cpp | /**************************************************************************
* Copyright (C) 2009-2012 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This... | 88,873 | C++ | .cpp | 1,825 | 43.783014 | 243 | 0.669212 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,791 | azahar.cpp | hiramvillarreal_iotpos/dataAccess/azahar.cpp | /**************************************************************************
* Copyright © 2007-2012 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 189,815 | C++ | .cpp | 4,736 | 34.451647 | 609 | 0.647088 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,792 | mibitlineedit.cpp | hiramvillarreal_iotpos/mibitWidgets/mibitlineedit.cpp | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This is... | 6,259 | C++ | .cpp | 172 | 31.093023 | 120 | 0.5645 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,793 | mibitnotifier.cpp | hiramvillarreal_iotpos/mibitWidgets/mibitnotifier.cpp | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This li... | 6,165 | C++ | .cpp | 157 | 34.66879 | 117 | 0.604651 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,794 | mibitfloatpanel.cpp | hiramvillarreal_iotpos/mibitWidgets/mibitfloatpanel.cpp | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This li... | 7,903 | C++ | .cpp | 229 | 29.078603 | 122 | 0.599372 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,795 | mibittip.cpp | hiramvillarreal_iotpos/mibitWidgets/mibittip.cpp | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This li... | 5,474 | C++ | .cpp | 139 | 34.719424 | 125 | 0.59108 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,796 | mibitpassworddlg.cpp | hiramvillarreal_iotpos/mibitWidgets/mibitpassworddlg.cpp | /***************************************************************************
* Copyright (C) 2009-2011 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This li... | 9,790 | C++ | .cpp | 248 | 33.362903 | 147 | 0.606816 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,797 | mibitdialog.cpp | hiramvillarreal_iotpos/mibitWidgets/mibitdialog.cpp | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* miguel@lemonpos.org *
* *
* This li... | 8,677 | C++ | .cpp | 233 | 31.154506 | 130 | 0.58918 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,798 | bundlelist.cpp | hiramvillarreal_iotpos/src/bundlelist.cpp | /***************************************************************************
* Copyright © 2012 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This p... | 7,759 | C++ | .cpp | 154 | 41.707792 | 205 | 0.517987 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,799 | productdelegate.cpp | hiramvillarreal_iotpos/src/productdelegate.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 8,015 | C++ | .cpp | 183 | 37.229508 | 107 | 0.588845 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,800 | BasketPriceCalculationService.cpp | hiramvillarreal_iotpos/src/BasketPriceCalculationService.cpp | #include "BasketPriceCalculationService.h"
#include "settings.h"
double BasketPriceCalculationService::calculateEntryDiscount(ProductInfo & prod, ClientInfo & client, bool forceGross) {
bool pricesAreGross = !Settings::addTax(); //just a better name to understant what to do.
double entryTotal = prod.qtyOnList ... | 3,584 | C++ | .cpp | 74 | 42.027027 | 263 | 0.728055 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,801 | loginwindow.cpp | hiramvillarreal_iotpos/src/loginwindow.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 14,179 | C++ | .cpp | 362 | 35.814917 | 134 | 0.678878 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,802 | reservations.cpp | hiramvillarreal_iotpos/src/reservations.cpp | /***************************************************************************
* Copyright (C) 2010 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 10,614 | C++ | .cpp | 250 | 37.544 | 118 | 0.648434 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,803 | inputdialog.cpp | hiramvillarreal_iotpos/src/inputdialog.cpp | /**************************************************************************
* Copyright © 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 11,655 | C++ | .cpp | 266 | 40.214286 | 136 | 0.666432 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,804 | specialordereditor.cpp | hiramvillarreal_iotpos/src/specialordereditor.cpp | /**************************************************************************
* Copyright © 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 22,826 | C++ | .cpp | 580 | 35.177586 | 172 | 0.659309 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,805 | main.cpp | hiramvillarreal_iotpos/src/main.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 3,747 | C++ | .cpp | 79 | 42.405063 | 211 | 0.560274 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,806 | pricechecker.cpp | hiramvillarreal_iotpos/src/pricechecker.cpp | /**************************************************************************
* Copyright © 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* Thi... | 4,924 | C++ | .cpp | 100 | 46.99 | 139 | 0.63642 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,807 | iotposview.cpp | hiramvillarreal_iotpos/src/iotposview.cpp | /**************************************************************************
* Copyright © 2013-2019 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* Modified by Daniel A. Cervantes Cabrera *
* dcchive... | 287,553 | C++ | .cpp | 6,003 | 41.575546 | 606 | 0.665481 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,808 | soselector.cpp | hiramvillarreal_iotpos/src/soselector.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 9,104 | C++ | .cpp | 195 | 43.220513 | 182 | 0.659258 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,809 | resume.cpp | hiramvillarreal_iotpos/src/resume.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 8,419 | C++ | .cpp | 199 | 38.668342 | 108 | 0.655838 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,810 | ticketpopup.cpp | hiramvillarreal_iotpos/src/ticketpopup.cpp | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This program ... | 3,622 | C++ | .cpp | 93 | 36.505376 | 97 | 0.596356 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,811 | misc.cpp | hiramvillarreal_iotpos/src/misc.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 5,366 | C++ | .cpp | 135 | 35.385185 | 233 | 0.558739 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,812 | gaveta.cpp | hiramvillarreal_iotpos/src/gaveta.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 5,477 | C++ | .cpp | 187 | 27.090909 | 122 | 0.64389 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,813 | dialogclientdata.cpp | hiramvillarreal_iotpos/src/dialogclientdata.cpp | /***************************************************************************
* Copyright (C) 2012 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 2,939 | C++ | .cpp | 63 | 43.698413 | 123 | 0.560336 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,814 | saleqtydelegate.cpp | hiramvillarreal_iotpos/src/saleqtydelegate.cpp | #include <QtGui>
#include "saleqtydelegate.h"
#include "structs.h"
#include "../dataAccess/azahar.h"
SaleQtyDelegate::SaleQtyDelegate(QObject *parent)
: QItemDelegate(parent)
{
}
QWidget *SaleQtyDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &, const QModelIndex & index) const
{
if (index... | 1,587 | C++ | .cpp | 40 | 34.425 | 124 | 0.693056 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,815 | sostatus.cpp | hiramvillarreal_iotpos/src/sostatus.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 9,016 | C++ | .cpp | 210 | 39.666667 | 182 | 0.660207 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,816 | hash.cpp | hiramvillarreal_iotpos/src/hash.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* SHA code from kde kwallet *
* ... | 6,670 | C++ | .cpp | 177 | 32.559322 | 118 | 0.52964 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,817 | iotpos.cpp | hiramvillarreal_iotpos/src/iotpos.cpp | /**************************************************************************
* Copyright © 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com * *
* This program is... | 33,258 | C++ | .cpp | 708 | 43.69209 | 164 | 0.719013 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,818 | Currency.cpp | hiramvillarreal_iotpos/src/nouns/Currency.cpp | #include "Currency.h"
#include <QTextStream>
Currency::Currency()
{
this->amount = 0;
}
Currency::Currency(double amount)
{
this->amount = amount * 100.0 + 0.5;
}
Currency::~Currency()
{
}
void Currency::set(Currency newValue)
{
this->amount = newValue.amount;
}
void Currency::set(double newValue)
{
... | 1,261 | C++ | .cpp | 57 | 19.45614 | 63 | 0.70143 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,819 | BasketPriceSummary.cpp | hiramvillarreal_iotpos/src/nouns/BasketPriceSummary.cpp | //
// Created by krzysiek on 15.04.15.
//
#include "BasketPriceSummary.h"
#include <QDebug>
BasketPriceSummary::BasketPriceSummary() {
}
BasketPriceSummary::BasketPriceSummary(Currency net, Currency gross, Currency tax, Currency discountGross, qulonglong points) {
this->net = net;
this->gross = gross;
th... | 1,739 | C++ | .cpp | 50 | 31.5 | 142 | 0.728955 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,820 | User.cpp | hiramvillarreal_iotpos/src/nouns/User.cpp | #include "User.h"
User::User() {
}
User::~User() {
}
Salesman::Salesman() {
}
Salesman::~Salesman() {
}
Customer::Customer() {
}
Customer::~Customer() {
}
| 167 | C++ | .cpp | 13 | 10.923077 | 23 | 0.647887 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,821 | BasketEntryPriceSummary.cpp | hiramvillarreal_iotpos/src/nouns/BasketEntryPriceSummary.cpp | #include "BasketEntryPriceSummary.h"
#include <QTextStream>
BasketEntryPriceSummary::BasketEntryPriceSummary(double net, double gross, double tax, double discountGross, qulonglong points) {
this->net = Currency(net);
this->gross = Currency(gross);
this->tax = Currency(tax);
this->discountGross = Curren... | 1,540 | C++ | .cpp | 44 | 31.590909 | 137 | 0.74428 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,822 | subcategoryeditor.cpp | hiramvillarreal_iotpos/iotstock/src/subcategoryeditor.cpp | /***************************************************************************
* Copyright © 2012 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This p... | 6,966 | C++ | .cpp | 154 | 38.876623 | 159 | 0.592391 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,823 | clienteditor.cpp | hiramvillarreal_iotpos/iotstock/src/clienteditor.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 4,436 | C++ | .cpp | 93 | 44.258065 | 188 | 0.618464 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,824 | iotstockview.cpp | hiramvillarreal_iotpos/iotstock/src/iotstockview.cpp | /**************************************************************************
* Copyright © 2007-2012 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 191,634 | C++ | .cpp | 3,875 | 43.277419 | 287 | 0.692236 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,825 | promoeditor.cpp | hiramvillarreal_iotpos/iotstock/src/promoeditor.cpp | /**************************************************************************
* Copyright © 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 7,087 | C++ | .cpp | 169 | 38.727811 | 118 | 0.648409 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,826 | usereditor.cpp | hiramvillarreal_iotpos/iotstock/src/usereditor.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 3,628 | C++ | .cpp | 98 | 33.94898 | 124 | 0.588386 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,827 | main.cpp | hiramvillarreal_iotpos/iotstock/src/main.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 3,485 | C++ | .cpp | 69 | 45.130435 | 201 | 0.547885 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,828 | offersdelegate.cpp | hiramvillarreal_iotpos/iotstock/src/offersdelegate.cpp | /***************************************************************************
* Copyright (C) 2007-2007-2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* Th... | 3,814 | C++ | .cpp | 80 | 43.625 | 122 | 0.585032 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,829 | providerseditor.cpp | hiramvillarreal_iotpos/iotstock/src/providerseditor.cpp | /**************************************************************************
* Copyright © 2007-2011 by Miguel Chavez Gamboa *
* miguel@lemonpos.org *
* *
* This progra... | 7,935 | C++ | .cpp | 204 | 35.52451 | 108 | 0.646262 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,830 | purchaseeditor.cpp | hiramvillarreal_iotpos/iotstock/src/purchaseeditor.cpp | /**************************************************************************
* Copyright © 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 35,804 | C++ | .cpp | 859 | 36.558789 | 195 | 0.660156 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,831 | usersdelegate.cpp | hiramvillarreal_iotpos/iotstock/src/usersdelegate.cpp | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 4,575 | C++ | .cpp | 103 | 39.495146 | 105 | 0.572423 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,832 | iotstock.cpp | hiramvillarreal_iotpos/iotstock/src/iotstock.cpp | /**************************************************************************
* Copyright © 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 22,294 | C++ | .cpp | 472 | 43.139831 | 136 | 0.703719 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,833 | producteditor.cpp | hiramvillarreal_iotpos/iotstock/src/producteditor.cpp | /**************************************************************************
* Copyright © 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 44,410 | C++ | .cpp | 1,128 | 34.935284 | 224 | 0.679717 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | true | false | false | true | false | false |
752,835 | print-dev.h | hiramvillarreal_iotpos/printing/print-dev.h | /**************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This p... | 1,925 | C++ | .h | 35 | 53.571429 | 98 | 0.504772 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,836 | print-cups.h | hiramvillarreal_iotpos/printing/print-cups.h | /**************************************************************************
* Copyright © 2007-2010 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 2,759 | C++ | .h | 43 | 61.604651 | 128 | 0.591128 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,837 | azahar.h | hiramvillarreal_iotpos/dataAccess/azahar.h | /***************************************************************************
* Copyright © 2007-2012 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This p... | 14,795 | C++ | .h | 272 | 49.617647 | 177 | 0.686493 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,838 | mibitnotifier.h | hiramvillarreal_iotpos/mibitWidgets/mibitnotifier.h | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This li... | 3,046 | C++ | .h | 69 | 41.115942 | 115 | 0.574891 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,839 | mibitlineedit.h | hiramvillarreal_iotpos/mibitWidgets/mibitlineedit.h | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This is... | 3,203 | C++ | .h | 77 | 37.74026 | 77 | 0.542068 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,840 | mibittip.h | hiramvillarreal_iotpos/mibitWidgets/mibittip.h | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This li... | 3,729 | C++ | .h | 90 | 37.1 | 92 | 0.579034 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,841 | mibitpassworddlg.h | hiramvillarreal_iotpos/mibitWidgets/mibitpassworddlg.h | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This li... | 4,343 | C++ | .h | 100 | 40.15 | 161 | 0.621781 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,842 | mibitfloatpanel.h | hiramvillarreal_iotpos/mibitWidgets/mibitfloatpanel.h | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This li... | 3,791 | C++ | .h | 89 | 39.292135 | 132 | 0.599242 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,843 | mibitdialog.h | hiramvillarreal_iotpos/mibitWidgets/mibitdialog.h | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* miguel@lemonpos.org *
* *
* This li... | 4,170 | C++ | .h | 94 | 41.117021 | 151 | 0.612737 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,844 | BasketPriceCalculationService.h | hiramvillarreal_iotpos/src/BasketPriceCalculationService.h | #ifndef IOTPOS_BASKETPRICECALCULATIONSERVICE_H
#define IOTPOS_BASKETPRICECALCULATIONSERVICE_H
#include <QHash>
#include "nouns/BasketPriceSummary.h"
#include "nouns/User.h"
#include "structs.h"
class BasketPriceCalculationService {
public:
BasketPriceSummary calculateBasketPrice(QHash<qulonglong, ProductInfo> & ... | 644 | C++ | .h | 14 | 43.785714 | 133 | 0.8352 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,845 | iotposview.h | hiramvillarreal_iotpos/src/iotposview.h | /**************************************************************************
* Copyright © 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 12,993 | C++ | .h | 371 | 30.3531 | 131 | 0.684144 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,846 | structs.h | hiramvillarreal_iotpos/src/structs.h | /**************************************************************************
* Copyright © 2007-2011 by Miguel Chavez Gamboa *
* miguel@lemonpos.org *
* *
* This program... | 13,727 | C++ | .h | 507 | 24.207101 | 158 | 0.680194 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,847 | specialordereditor.h | hiramvillarreal_iotpos/src/specialordereditor.h | /***************************************************************************
* Copyright (C) 2009-2010 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 4,843 | C++ | .h | 105 | 42.32381 | 294 | 0.607506 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,848 | soselector.h | hiramvillarreal_iotpos/src/soselector.h | /***************************************************************************
* Copyright (C) 2009-2010 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 2,447 | C++ | .h | 60 | 38.033333 | 77 | 0.539529 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,849 | ticketpopup.h | hiramvillarreal_iotpos/src/ticketpopup.h | /***************************************************************************
* Copyright (C) 2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This program is free so... | 2,167 | C++ | .h | 50 | 40.96 | 76 | 0.52891 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,850 | misc.h | hiramvillarreal_iotpos/src/misc.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 2,138 | C++ | .h | 41 | 49.902439 | 105 | 0.528257 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,851 | dialogclientdata.h | hiramvillarreal_iotpos/src/dialogclientdata.h | /***************************************************************************
* Copyright (C) 2012 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 2,087 | C++ | .h | 45 | 43.755556 | 77 | 0.509109 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,853 | loginwindow.h | hiramvillarreal_iotpos/src/loginwindow.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This program is fre... | 3,790 | C++ | .h | 108 | 31.194444 | 77 | 0.593511 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,854 | hash.h | hiramvillarreal_iotpos/src/hash.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 1,931 | C++ | .h | 38 | 47.894737 | 80 | 0.482521 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,855 | sostatus.h | hiramvillarreal_iotpos/src/sostatus.h | /***************************************************************************
* Copyright (C) 2009-2010 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 2,451 | C++ | .h | 61 | 37.409836 | 77 | 0.534845 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,856 | resume.h | hiramvillarreal_iotpos/src/resume.h | /***************************************************************************
* Copyright (C) 2009-2010 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 3,031 | C++ | .h | 74 | 37.905405 | 78 | 0.559173 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,858 | enums.h | hiramvillarreal_iotpos/src/enums.h | /**************************************************************************
* Copyright © 2007-2011 by Miguel Chavez Gamboa *
* miguel@lemonpos.org *
* *
* This pr... | 2,880 | C++ | .h | 34 | 82.941176 | 229 | 0.578576 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,859 | pricechecker.h | hiramvillarreal_iotpos/src/pricechecker.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 2,078 | C++ | .h | 49 | 39.795918 | 77 | 0.509911 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,860 | reservations.h | hiramvillarreal_iotpos/src/reservations.h | /***************************************************************************
* Copyright (C) 2010 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 3,364 | C++ | .h | 82 | 37.878049 | 79 | 0.580635 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,861 | productdelegate.h | hiramvillarreal_iotpos/src/productdelegate.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 1,933 | C++ | .h | 34 | 54.529412 | 102 | 0.508995 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,862 | bundlelist.h | hiramvillarreal_iotpos/src/bundlelist.h | /***************************************************************************
* Copyright © 2012 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This p... | 2,567 | C++ | .h | 50 | 48.54 | 180 | 0.555022 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,863 | gaveta.h | hiramvillarreal_iotpos/src/gaveta.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 3,506 | C++ | .h | 84 | 38.369048 | 77 | 0.567155 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,864 | iotpos.h | hiramvillarreal_iotpos/src/iotpos.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 4,752 | C++ | .h | 155 | 26.393548 | 77 | 0.574672 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,865 | inputdialog.h | hiramvillarreal_iotpos/src/inputdialog.h | /**************************************************************************
* Copyright © 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 2,886 | C++ | .h | 58 | 46.5 | 195 | 0.573149 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,866 | BasketEntryPriceSummary.h | hiramvillarreal_iotpos/src/nouns/BasketEntryPriceSummary.h | #ifndef BASKETENTRYPRICESUMMARY_H
#define BASKETENTRYPRICESUMMARY_H
#include <QString>
#include <QtGlobal>
#include "Currency.h"
class BasketEntryPriceSummary {
private:
Currency net;
Currency gross;
Currency tax;
Currency discountGross;
qulonglong points;
public:
BasketEntryPriceSummary(doub... | 767 | C++ | .h | 25 | 27.24 | 115 | 0.778833 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,867 | User.h | hiramvillarreal_iotpos/src/nouns/User.h | #ifndef IOTPOS_USER_H
#define IOTPOS_USER_H
class User {
public:
User();
virtual ~User();
};
class Salesman : public User {
public:
Salesman();
virtual ~Salesman();
};
class Customer : public User {
public:
Customer();
virtual ~Customer();
};
#endif //IOTPOS_USER_H
| 296 | C++ | .h | 18 | 13.777778 | 30 | 0.676471 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,868 | BasketPriceSummary.h | hiramvillarreal_iotpos/src/nouns/BasketPriceSummary.h | //
// Created by krzysiek on 15.04.15.
//
#ifndef IOTPOS_BASKETPRICESUMMARY_H
#define IOTPOS_BASKETPRICESUMMARY_H
#include "BasketEntryPriceSummary.h"
class BasketPriceSummary {
private:
Currency net;
Currency gross;
Currency tax;
Currency discountGross;
qulonglong points;
public:
BasketPric... | 758 | C++ | .h | 27 | 24.592593 | 110 | 0.769337 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,869 | Currency.h | hiramvillarreal_iotpos/src/nouns/Currency.h | #ifndef CURRENCY_H
#define CURRENCY_H
#include <QString>
#include <QTextStream>
#include <QDebug>
/**
* @brief The Currency class
* Objects of this class are mutable. Methods such as add, substract, multiply, divide are modifying
* current object and returning "this" pointer to make it possible to chain calls.
*/... | 854 | C++ | .h | 30 | 25.466667 | 100 | 0.740196 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,870 | clienteditor.h | hiramvillarreal_iotpos/iotstock/src/clienteditor.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 3,405 | C++ | .h | 66 | 48.227273 | 90 | 0.582457 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,871 | promoeditor.h | hiramvillarreal_iotpos/iotstock/src/promoeditor.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 2,520 | C++ | .h | 58 | 40.482759 | 77 | 0.533007 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,872 | providerseditor.h | hiramvillarreal_iotpos/iotstock/src/providerseditor.h | /**************************************************************************
* Copyright © 2007-2011 by Miguel Chavez Gamboa *
* miguel@lemonpos.org *
* *
* This progra... | 2,563 | C++ | .h | 61 | 39.508197 | 112 | 0.556225 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,874 | subcategoryeditor.h | hiramvillarreal_iotpos/iotstock/src/subcategoryeditor.h | /***************************************************************************
* Copyright (C) 2012 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This pr... | 2,972 | C++ | .h | 61 | 45.491803 | 99 | 0.554787 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,875 | iotstockview.h | hiramvillarreal_iotpos/iotstock/src/iotstockview.h | /***************************************************************************
* Copyright © 2007-2012 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* This p... | 9,502 | C++ | .h | 231 | 37.203463 | 245 | 0.727853 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,876 | producteditor.h | hiramvillarreal_iotpos/iotstock/src/producteditor.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* Modified by Daniel A. Cervantes dcchivela@gmail.com *
* This prog... | 7,187 | C++ | .h | 160 | 40.64375 | 94 | 0.623444 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,877 | usereditor.h | hiramvillarreal_iotpos/iotstock/src/usereditor.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 3,058 | C++ | .h | 63 | 45.269841 | 89 | 0.567314 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,878 | purchaseeditor.h | hiramvillarreal_iotpos/iotstock/src/purchaseeditor.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 6,068 | C++ | .h | 132 | 41.954545 | 144 | 0.599324 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,879 | offersdelegate.h | hiramvillarreal_iotpos/iotstock/src/offersdelegate.h | /***************************************************************************
* Copyright (C) 2007-2007-2009 by Miguel Chavez Gamboa *
* hiramvillarreal.ap@gmail.com *
* *
* Th... | 1,932 | C++ | .h | 32 | 57.875 | 112 | 0.50792 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,880 | iotstock.h | hiramvillarreal_iotpos/iotstock/src/iotstock.h | /***************************************************************************
* Copyright (C) 2013-2015 by Hiram R. Villarreal *
* hiramvillarreal.ap@gmail.com *
* *
* This prog... | 2,873 | C++ | .h | 81 | 32.283951 | 77 | 0.554152 | hiramvillarreal/iotpos | 146 | 77 | 17 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,888 | sonicsaudio.h | syams86_Virtual-Audio-Pipeline/Virtual Audio Pipeline/sonicsaudio.h | /*
Module Name:
sonicsaudio.h
Abstract:
Header file for common stuff.
*/
#ifndef __SONICSAUDIO_H_
#define __SONICSAUDIO_H_
#include <portcls.h>
#include <stdunk.h>
#include <ksdebug.h>
#include "kshelper.h"
//=============================================================================
// Defines
//============... | 5,038 | C++ | .h | 128 | 36.328125 | 106 | 0.592092 | syams86/Virtual-Audio-Pipeline | 128 | 38 | 11 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,891 | kshelper.h | syams86_Virtual-Audio-Pipeline/Virtual Audio Pipeline/kshelper.h | /*
Module Name:
kshelper.h
Abstract:
Helper functions for msvad
*/
#ifndef __KSHELPER_H_
#define __KSHELPER_H_
#include <portcls.h>
#include <ksdebug.h>
PWAVEFORMATEX GetWaveFormatEx(IN PKSDATAFORMAT pDataFormat);
NTSTATUS PropertyHandler_BasicSupport(IN PPCPROPERTY_REQUEST PropertyRequest, IN ULONG Flags, IN D... | 473 | C++ | .h | 14 | 32.142857 | 123 | 0.828194 | syams86/Virtual-Audio-Pipeline | 128 | 38 | 11 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
752,892 | common.h | syams86_Virtual-Audio-Pipeline/Virtual Audio Pipeline/common.h | /*
Module Name:
Common.h
Abstract:
CAdapterCommon class declaration.
*/
#ifndef __COMMON_H_
#define __COMMON_H_
//=============================================================================
// Defines
//=============================================================================
DEFINE_GUID(IID_IAdapterCommo... | 2,280 | C++ | .h | 47 | 46.297872 | 107 | 0.544514 | syams86/Virtual-Audio-Pipeline | 128 | 38 | 11 | GPL-2.0 | 9/20/2024, 9:42:13 PM (Europe/Amsterdam) | false | false | false | false | false | false | false | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.