git.stg.codes
/
stg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fd94777
)
Default constructor added for SERVICE_CONF
author
Maxim Mamontov
<faust.madf@gmail.com>
Sat, 13 Aug 2011 16:11:21 +0000
(19:11 +0300)
committer
Maxim Mamontov
<faust.madf@gmail.com>
Sat, 13 Aug 2011 16:11:21 +0000
(19:11 +0300)
include/stg/service_conf.h
patch
|
blob
|
history
diff --git
a/include/stg/service_conf.h
b/include/stg/service_conf.h
index ea3495b3dd686052dbb5570f09072b998a994285..5f015d0b4fe05429ec6279712696c1d82397f915 100644
(file)
--- a/
include/stg/service_conf.h
+++ b/
include/stg/service_conf.h
@@
-5,6
+5,9
@@
struct SERVICE_CONF
{
+SERVICE_CONF()
+ : name(), comment(), cost(0), payDay(0)
+{}
SERVICE_CONF(const std::string & n)
: name(n), comment(), cost(0), payDay(0)
{}
@@
-25,5
+28,11
@@
double cost;
unsigned payDay;
};
+inline
+bool operator==(const SERVICE_CONF & a, const SERVICE_CONF & b)
+{
+return a.name == b.name;
+}
+
#endif //SERVICE_CONF_H