Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
otb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
273
Issues
273
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main Repositories
otb
Commits
44ca5176
Commit
44ca5176
authored
Nov 30, 2012
by
Stéphane Albert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
STYLE: comment cleanup.
parent
dbc32608
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
22 deletions
+30
-22
Code/Application/mvdApplication.cxx
Code/Application/mvdApplication.cxx
+0
-10
Code/Application/mvdApplication.h
Code/Application/mvdApplication.h
+10
-10
Code/Common/mvdMyClass.h
Code/Common/mvdMyClass.h
+20
-2
No files found.
Code/Application/mvdApplication.cxx
View file @
44ca5176
...
...
@@ -67,16 +67,6 @@ Application
{
}
/*
bool
Application::Initialize()
{
InitializeLocale();
return true;
}
*/
/*******************************************************************************/
void
Application
::
InitializeCore
()
...
...
Code/Application/mvdApplication.h
View file @
44ca5176
...
...
@@ -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
;
...
...
Code/Common/mvdMyClass.h
View file @
44ca5176
...
...
@@ -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
:
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment