Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
vite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
solverstack
vite
Commits
f30434c8
Commit
f30434c8
authored
Apr 21, 2010
by
Mathieu Faverge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge config_file (correct some trouble I didn't notice during the merge)
parent
f2956a20
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
17 additions
and
42 deletions
+17
-42
src/common/Message.hpp
src/common/Message.hpp
+1
-0
src/core/Core.hpp
src/core/Core.hpp
+0
-3
src/interface/Interface_graphic.hpp
src/interface/Interface_graphic.hpp
+3
-13
src/parser/Parser.hpp
src/parser/Parser.hpp
+0
-6
src/parser/ParserDefinitionPaje.hpp
src/parser/ParserDefinitionPaje.hpp
+9
-11
src/render/Minimap.cpp
src/render/Minimap.cpp
+0
-2
src/render/Render_svg.cpp
src/render/Render_svg.cpp
+0
-1
src/statistics/Stats_window.cpp
src/statistics/Stats_window.cpp
+2
-4
src/statistics/Stats_window.hpp
src/statistics/Stats_window.hpp
+2
-2
No files found.
src/common/Message.hpp
View file @
f30434c8
...
...
@@ -50,6 +50,7 @@
class
stringstream
;
class
ostream
;
class
Interface
;
class
Message
:
public
std
::
stringstream
{
private:
...
...
src/core/Core.hpp
View file @
f30434c8
...
...
@@ -467,9 +467,6 @@ public:
* \fn get_trace() const
*\brief Accessor to the trace
*/
/*!
*\brief Return the current trace.
*/
Trace
*
get_trace
()
const
;
/*!
...
...
src/interface/Interface_graphic.hpp
View file @
f30434c8
...
...
@@ -66,9 +66,6 @@ class Variable;
/* -- */
#include "ui_main_window.h"
/* the main window graphical interface */
/* -- */
#include "ui_main_window.h"
/* the main window graphical interface */
/* Global informations */
#include "interface/Interface.hpp"
#include "interface/Settings_window.hpp"
...
...
@@ -94,21 +91,14 @@ class Interface_graphic : public QMainWindow, protected Ui::main_window, public
*/
void
load_windows
();
/*!
*\brief Drag and drop function
*\brief Drag and drop functions
*
*/
void
dragEnterEvent
(
QDragEnterEvent
*
event
);
/*!
*\brief Drag and drop function
*/
void
dragMoveEvent
(
QDragMoveEvent
*
event
);
/*!
*\brief Drag and drop function
*/
void
dragLeaveEvent
(
QDragLeaveEvent
*
event
);
/*!
*\brief Drag and drop function
*/
void
dropEvent
(
QDropEvent
*
event
);
/*!
...
...
src/parser/Parser.hpp
View file @
f30434c8
...
...
@@ -55,13 +55,7 @@
class
Parser
{
protected:
/*!
* Set to true if the parsing is finished.
*/
bool
_is_finished
;
/*!
* Set to true if the parsing is canceled.
*/
bool
_is_canceled
;
std
::
string
_file_to_parse
;
...
...
src/parser/ParserDefinitionPaje.hpp
View file @
f30434c8
...
...
@@ -123,35 +123,33 @@ private:
void
leave_definition
(
const
PajeLine_t
*
line
);
/*!
* \fn add_field_to_definition(std::string& first_token, const PajeLine_t& line)
* \param first_token : the name of the file to parse
* \fn add_field_to_definition(const PajeLine_t *line)
* \param line : the structure of data to fill
*/
void
add_field_to_definition
(
const
PajeLine_t
*
line
);
public:
/*!
* \fn enter_definition(const PajeLine_t *line)
* \param PajeLine line
* \brief Put the parser in definition mode
* \fn ParserDefinitionPaje
* \brief constructor
*/
ParserDefinitionPaje
();
~
ParserDefinitionPaje
();
/*!
* \fn store_definition(const PajeLine_t
&l
)
* \param l the line to store.
* \fn store_definition(const PajeLine_t
*line
)
* \param l
ine
the line to store.
*/
void
store_definition
(
const
PajeLine_t
*
line
);
public:
/*!
* \fn ParserDefinitionPaje
* \brief constructor
* \fn getDefFromTrid(int trid)
* \param i : the unsigned integer matching the definition we want
* \return : the i-th definition
*/
PajeDefinition
*
getDefFromTrid
(
int
trid
);
/*! \fn print_definitions()
const
/*! \fn print_definitions()
* \brief Print all the definitions. Useful for debug.
*/
void
print_definitions
();
...
...
src/render/Minimap.cpp
View file @
f30434c8
...
...
@@ -54,8 +54,6 @@
#include <QResizeEvent>
#include <QSize>
/* -- */
#include "interface/Interface.hpp"
/* -- */
#include "common/common.hpp"
#include "common/Session.hpp"
#include "common/Message.hpp"
...
...
src/render/Render_svg.cpp
View file @
f30434c8
...
...
@@ -53,7 +53,6 @@
#include "common/common.hpp"
#include "common/Info.hpp"
#include "common/Message.hpp"
#include "common/Message.hpp"
/* -- */
#include "render/Geometry.hpp"
#include "render/Render_template.hpp"
...
...
src/statistics/Stats_window.cpp
View file @
f30434c8
...
...
@@ -54,13 +54,11 @@
#include <QKeyEvent>
#include <QGLWidget>
/* -- */
#include "interface/resource.hpp"
#include "interface/Interface.hpp"
/* -- */
#include "common/common.hpp"
#include "common/Info.hpp"
#include "common/Message.hpp"
#include "common/Message.hpp"
#include "interface/resource.hpp"
#include "interface/Interface.hpp"
/* -- */
#include "trace/values/Values.hpp"
#include "trace/EntityValue.hpp"
...
...
src/statistics/Stats_window.hpp
View file @
f30434c8
...
...
@@ -67,11 +67,11 @@ class Stats_window;
/*!
* \enum stattype
_t
* \enum stattype
* \brief Enumeration for the kind of chart to print stats.
*
*/
typedef
enum
{
typedef
enum
stattype
{
_HDIAGRAM_INDEX
,
_DIAGRAM_INDEX
,
_COUNTER_INDEX
...
...
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