Skip to content
Snippets Groups Projects
Commit 44ca5176 authored by Stéphane Albert's avatar Stéphane Albert
Browse files

STYLE: comment cleanup.

parent dbc32608
No related branches found
No related tags found
No related merge requests found
......@@ -67,16 +67,6 @@ Application
{
}
/*
bool
Application::Initialize()
{
InitializeLocale();
return true;
}
*/
/*******************************************************************************/
void
Application::InitializeCore()
......
......@@ -48,28 +48,25 @@ class Application
Q_OBJECT;
//
//
// Public methods.
public:
/** Constructor */
/** Constructor */
Application( int& argc, char** argv );
/** Destructor */
/** Destructor */
virtual ~Application();
/**
*/
// bool Initialize();
//
// SIGNALS.
signals:
//
//
// Protected methods.
protected:
//
//
// Private methods.
private:
/**
*/
......@@ -83,6 +80,9 @@ private:
*/
void InitializeLocale();
//
// Private attributes.
private:
/**
*/
bool m_IsRunningFromBuildDir;
......
......@@ -51,20 +51,38 @@ class MyClass :
{
Q_OBJECT;
//
// Public methods.
public:
/** Constructor */
/** Constructor */
MyClass();
/** Destructor */
/** Destructor */
virtual ~MyClass();
//
// SIGNALS.
signals:
//
// Protected methods.
protected:
//
// Protected attributes.
protected:
//
// Private methods.
private:
//
// Private attributes.
//
// SLOTS.
private slots:
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment