diff options
author | Pascal Viandier <[email protected]> | 2015-10-01 19:38:38 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2015-10-01 19:38:38 +0200 |
commit | 1e0e72fceb542e4eb984b50f747c38314f055b8f (patch) | |
tree | 40d35ec3682c465348f8d8d73509aeda4729a8bb /src/dinfo.h | |
parent | c9e33e7d3fcd5b21a00e13dcbb5742a6c8da6106 (diff) | |
download | kooldock-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.h | 25 |
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 * - * [email protected] * + * Copyright (C) 2007 by bisiek * + * [email protected] * * * * 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 |