summaryrefslogtreecommitdiffstats
path: root/src/dinfo.h
diff options
context:
space:
mode:
authorPascal Viandier <[email protected]>2015-10-01 19:38:38 +0200
committerSlávek Banko <[email protected]>2015-10-01 19:38:38 +0200
commit1e0e72fceb542e4eb984b50f747c38314f055b8f (patch)
tree40d35ec3682c465348f8d8d73509aeda4729a8bb /src/dinfo.h
parentc9e33e7d3fcd5b21a00e13dcbb5742a6c8da6106 (diff)
downloadkooldock-1e0e72fceb542e4eb984b50f747c38314f055b8f.tar.gz
kooldock-1e0e72fceb542e4eb984b50f747c38314f055b8f.zip
Fix remaining issues and build warnings
Cleanup code Signed-off-by: Pascal Viandier <[email protected]>
Diffstat (limited to 'src/dinfo.h')
-rw-r--r--src/dinfo.h25
1 files changed, 12 insertions, 13 deletions
diff --git a/src/dinfo.h b/src/dinfo.h
index 129bf62..ae8c0c2 100644
--- a/src/dinfo.h
+++ b/src/dinfo.h
@@ -1,6 +1,6 @@
/***************************************************************************
- * Copyright (C) 2007 by bisiek *
+ * Copyright (C) 2007 by bisiek *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
@@ -24,19 +24,18 @@
/**
@author bisiek <[email protected]>
*/
-class dInfo{
+class dInfo {
public:
- dInfo();
- ~dInfo();
- bool gBool();
- void sBool(bool nVal);
- int gInt();
- void sInt(int nVal);
- void inc(int val);
+ dInfo();
+ ~dInfo();
+ bool gBool();
+ void sBool(bool nVal);
+ int gInt();
+ void sInt(int nVal);
+ void inc(int val);
private:
- bool mBool;
- int mInt;
-
+ bool mBool;
+ int mInt;
};
#endif