Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
vite
Commits
77d3d72f
Commit
77d3d72f
authored
16 years ago
by
Pascal Noisette
Browse files
Options
Downloads
Patches
Plain Diff
doxygenation
parent
cf56575d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
parser/src/Line.hpp
+9
-12
9 additions, 12 deletions
parser/src/Line.hpp
parser/src/TokenSource.hpp
+20
-21
20 additions, 21 deletions
parser/src/TokenSource.hpp
with
29 additions
and
33 deletions
parser/src/Line.hpp
+
9
−
12
View file @
77d3d72f
...
...
@@ -10,7 +10,7 @@
/*! \class Line Line.hpp "../parser/src/Line.hpp"
*
Contains the definition of a line
.
*
\brief Line object stand for paje format syntax unit
.
*/
class
Line
{
...
...
@@ -24,29 +24,26 @@ private:
public:
/*!
* \brief Constructor
*
* Constructor for the line
* \brief Constructor for the line
*/
Line
();
/*!
* \brief Constructor
* Constructor for the line
* \param : A reference of the line to be copied
* \brief Constructor for the line
* \param A reference of the line to be copied
*/
Line
(
Line
&
);
/*!
* \brief Constructor
* Constructor for the line
* \param : a filename
* \brief Constructor for the line
* \param a filename
*/
Line
(
std
::
string
&
filename
);
/*!
* \brief Constructor
* Constructor for the line
* \brief Constructor for the line
* \param : a filename
*/
Line
(
const
char
*
filename
);
...
...
This diff is collapsed.
Click to expand it.
parser/src/TokenSource.hpp
+
20
−
21
View file @
77d3d72f
...
...
@@ -7,7 +7,8 @@
#include
<iostream>
/*!
* \class TokenSource supply tokens from a file trace. Tokens are word unit used in PajeFile trace formats.
* \class TokenSource
* \brief supply tokens from a file trace. Tokens are word unit used in PajeFile trace formats.
*/
class
TokenSource
{
...
...
@@ -31,48 +32,46 @@ private:
void
build_simple_token
();
public:
/*!
* \fn
:
TokenSource
* \brief
:
Constructor opening a file
* \param
:
Valid filename
* \fn TokenSource
(const char* filename);
* \brief Constructor opening a file
* \param Valid filename
*/
TokenSource
(
const
char
*
filename
);
/*!
* \fn
:
TokenSource
* \brief
:C
onstructor
needs a file to be openned
later
* \fn
TokenSource
* \brief
This c
onstructor needs a file to be openned
*/
TokenSource
();
/*!
* \fn
:
open
* \brief
:
open a file
* \param
:
valid filename
* \fn
open
()
* \brief open a file
* \param valid filename
*/
void
open
(
const
char
*
filename
);
/*!
* \fn : lire_token
*
* \return : a token in a \0-ended character string (char*)
* NULL if the file ended, NULL if no file is opened
/*!
* \fn lire_token
* \brief supplies a token
* \return a \\0-ended character string (char*), NULL if the file ended, NULL if no file is opened
*/
char
*
lire_token
();
/*!
* \fn : ~TokenSource
*
* \brief : release the file
* \fn ~TokenSource
* \brief Destuctor which release the file
*/
~
TokenSource
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment