git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Look for mysql-connector in FreeBSD paths.
[stg.git]
/
projects
/
stargazer
/
plugins
/
configuration
/
rpcconfig
/
tariff_helper.h
diff --git
a/projects/stargazer/plugins/configuration/rpcconfig/tariff_helper.h
b/projects/stargazer/plugins/configuration/rpcconfig/tariff_helper.h
index 955f810e1cd674305e3bb1d3b522d3e45cab508c..9f68a74d2a486cae416d295e889a9b73e1ffdde9 100644
(file)
--- a/
projects/stargazer/plugins/configuration/rpcconfig/tariff_helper.h
+++ b/
projects/stargazer/plugins/configuration/rpcconfig/tariff_helper.h
@@
-1,22
+1,23
@@
-#ifndef __TARIFF_HELPER_H__
-#define __TARIFF_HELPER_H__
+#pragma once
#include <xmlrpc-c/base.hpp>
#include <xmlrpc-c/base.hpp>
-#include "stg/tariff_conf.h"
+
+namespace STG
+{
+
+struct TariffData;
+
+}
class TARIFF_HELPER
{
public:
class TARIFF_HELPER
{
public:
-
TARIFF_HELPER(TARIFF_DATA
& td)
+
explicit TARIFF_HELPER(STG::TariffData
& td)
: data(td)
{}
void GetTariffInfo(xmlrpc_c::value * info) const;
bool SetTariffInfo(const xmlrpc_c::value & info);
private:
: data(td)
{}
void GetTariffInfo(xmlrpc_c::value * info) const;
bool SetTariffInfo(const xmlrpc_c::value & info);
private:
-
TARIFF_DATA
& data;
+
STG::TariffData
& data;
};
};
-
-#endif
-
-