PackageName
 
Docs
Loading...
Searching...
No Matches
temp.hpp
Go to the documentation of this file.
1#ifndef PACKAGENAME_TEMP_HPP
2#define PACKAGENAME_TEMP_HPP
3
4class Temp
5{
6 public:
7 // constructor
8 explicit Temp(int pVar);
9
10 void print();
11
12 // member variables
13 int mVar;
14
15 private:
16 // class variables
17 static const int C_COUNT;
18};
19
20#endif// PACKAGENAME_TEMP_HPP
Definition temp.hpp:5
void print()
int mVar
Definition temp.hpp:13
Temp(int pVar)