Skip to content

Commit c00d4bb

Browse files
committed
Fix warning
1 parent 3ca1f53 commit c00d4bb

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/Core/Application/Application.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,17 @@ namespace Core
5050
/// @class Application
5151
/// @brief Application is the thread that processes all the actions in the program.
5252

53-
class Application;
54-
class ApplicationPrivate;
53+
struct ApplicationPrivate;
5554
typedef boost::shared_ptr<ApplicationPrivate> ApplicationPrivateHandle;
5655

5756

58-
class SCISHARE Application : boost::noncopyable //: public EventHandler, public RecursiveLockable
57+
class SCISHARE Application : boost::noncopyable
5958
{
6059
CORE_SINGLETON( Application );
6160

6261
private:
6362
Application();
64-
virtual ~Application();
63+
~Application();
6564

6665
public:
6766
void readCommandLine(int argc, const char* argv[]);
@@ -113,8 +112,6 @@ class SCISHARE Application : boost::noncopyable //: public EventHandler, public
113112
// static int GetMajorVersion();
114113
// static int GetMinorVersion();
115114
// static int GetPatchVersion();
116-
// static bool Is64Bit();
117-
// static bool Is32Bit();
118115
// static std::string GetApplicationName();
119116
// static std::string GetReleaseName();
120117
// static std::string GetApplicationNameAndVersion();

0 commit comments

Comments
 (0)