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
C
CGoGN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
David Cazier
CGoGN
Commits
20543b8f
Commit
20543b8f
authored
Apr 25, 2013
by
Sylvain Thery
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove forceDartMarker default parameter from TraversorX
parent
78d40aed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
4 deletions
+36
-4
include/Topology/generic/traversorCell.h
include/Topology/generic/traversorCell.h
+36
-4
No files found.
include/Topology/generic/traversorCell.h
View file @
20543b8f
...
...
@@ -95,11 +95,43 @@ public:
}
;
//template <typename MAP>
//class TraversorV : public TraversorCell<MAP, VERTEX>
//{
//public:
// TraversorV(MAP& m, bool forceDartMarker = false, unsigned int thread = 0) : TraversorCell<MAP, VERTEX>(m, forceDartMarker, thread)
// {}
//};
//template <typename MAP>
//class TraversorE : public TraversorCell<MAP, EDGE>
//{
//public:
// TraversorE(MAP& m, bool forceDartMarker = false, unsigned int thread = 0) : TraversorCell<MAP, EDGE>(m, forceDartMarker, thread)
// {}
//};
//template <typename MAP>
//class TraversorF : public TraversorCell<MAP, FACE>
//{
//public:
// TraversorF(MAP& m, bool forceDartMarker = false, unsigned int thread = 0) : TraversorCell<MAP, FACE>(m, forceDartMarker, thread)
// {}
//};
//template <typename MAP>
//class TraversorW : public TraversorCell<MAP, VOLUME>
//{
//public:
// TraversorW(MAP& m, bool forceDartMarker = false, unsigned int thread = 0) : TraversorCell<MAP, VOLUME>(m, forceDartMarker, thread)
// {}
//};
template
<
typename
MAP
>
class
TraversorV
:
public
TraversorCell
<
MAP
,
VERTEX
>
{
public:
TraversorV
(
MAP
&
m
,
bool
forceDartMarker
=
false
,
unsigned
int
thread
=
0
)
:
TraversorCell
<
MAP
,
VERTEX
>
(
m
,
forceDartMarker
,
thread
)
TraversorV
(
MAP
&
m
,
unsigned
int
thread
=
0
)
:
TraversorCell
<
MAP
,
VERTEX
>
(
m
,
false
,
thread
)
{}
};
...
...
@@ -107,7 +139,7 @@ template <typename MAP>
class
TraversorE
:
public
TraversorCell
<
MAP
,
EDGE
>
{
public:
TraversorE
(
MAP
&
m
,
bool
forceDartMarker
=
false
,
unsigned
int
thread
=
0
)
:
TraversorCell
<
MAP
,
EDGE
>
(
m
,
forceDartMarker
,
thread
)
TraversorE
(
MAP
&
m
,
unsigned
int
thread
=
0
)
:
TraversorCell
<
MAP
,
EDGE
>
(
m
,
false
,
thread
)
{}
};
...
...
@@ -115,7 +147,7 @@ template <typename MAP>
class
TraversorF
:
public
TraversorCell
<
MAP
,
FACE
>
{
public:
TraversorF
(
MAP
&
m
,
bool
forceDartMarker
=
false
,
unsigned
int
thread
=
0
)
:
TraversorCell
<
MAP
,
FACE
>
(
m
,
forceDartMarker
,
thread
)
TraversorF
(
MAP
&
m
,
unsigned
int
thread
=
0
)
:
TraversorCell
<
MAP
,
FACE
>
(
m
,
false
,
thread
)
{}
};
...
...
@@ -123,7 +155,7 @@ template <typename MAP>
class
TraversorW
:
public
TraversorCell
<
MAP
,
VOLUME
>
{
public:
TraversorW
(
MAP
&
m
,
bool
forceDartMarker
=
false
,
unsigned
int
thread
=
0
)
:
TraversorCell
<
MAP
,
VOLUME
>
(
m
,
forceDartMarker
,
thread
)
TraversorW
(
MAP
&
m
,
unsigned
int
thread
=
0
)
:
TraversorCell
<
MAP
,
VOLUME
>
(
m
,
false
,
thread
)
{}
};
...
...
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