Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/container/CTR_List.h')
-rw-r--r--intern/container/CTR_List.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/intern/container/CTR_List.h b/intern/container/CTR_List.h
index 7eb8dce7241..404a08fddf2 100644
--- a/intern/container/CTR_List.h
+++ b/intern/container/CTR_List.h
@@ -37,42 +37,42 @@
class CTR_Link {
public:
CTR_Link(
- ) ;
+ );
CTR_Link(
CTR_Link *next,
CTR_Link *prev
- ) ;
+ );
CTR_Link *
getNext(
- ) const ;
+ ) const;
CTR_Link *
getPrev(
- ) const ;
+ ) const;
bool
isHead(
- ) const ;
+ ) const;
bool
isTail(
- ) const ;
+ ) const;
void
insertBefore(
CTR_Link *link
- ) ;
+ );
void
insertAfter(
CTR_Link *link
- ) ;
+ );
void
remove(
- ) ;
+ );
private:
CTR_Link *m_next;
@@ -83,25 +83,25 @@ class CTR_List {
public:
CTR_List(
- ) ;
+ );
CTR_Link *
getHead(
- ) const ;
+ ) const;
CTR_Link *
getTail(
- ) const ;
+ ) const;
void
addHead(
CTR_Link *link
- ) ;
+ );
void
addTail(
CTR_Link *link
- ) ;
+ );
private:
CTR_Link m_head;