summaryrefslogtreecommitdiff
path: root/src/ToolBox/superpmi/superpmi-shared/mclist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ToolBox/superpmi/superpmi-shared/mclist.h')
-rw-r--r--src/ToolBox/superpmi/superpmi-shared/mclist.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ToolBox/superpmi/superpmi-shared/mclist.h b/src/ToolBox/superpmi/superpmi-shared/mclist.h
index 93b2879569..dd5073bbc0 100644
--- a/src/ToolBox/superpmi/superpmi-shared/mclist.h
+++ b/src/ToolBox/superpmi/superpmi-shared/mclist.h
@@ -13,23 +13,23 @@
class MCList
{
public:
- static bool processArgAsMCL(char *input, int *count, int **list);
+ static bool processArgAsMCL(char* input, int* count, int** list);
MCList()
{
- //Initialize the static file handle
+ // Initialize the static file handle
hMCLFile = INVALID_HANDLE_VALUE;
}
- //Methods to create an MCL file
- void InitializeMCL(char *filename);
+ // Methods to create an MCL file
+ void InitializeMCL(char* filename);
void AddMethodToMCL(int methodIndex);
void CloseMCL();
private:
- static bool getLineData(const char *nameOfInput, /* OUT */ int *pIndexCount, /* OUT */ int **pIndexes);
+ static bool getLineData(const char* nameOfInput, /* OUT */ int* pIndexCount, /* OUT */ int** pIndexes);
- //File handle for MCL file
+ // File handle for MCL file
HANDLE hMCLFile;
};
#endif