Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
specter
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
AxioDL
specter
Commits
e7cf4931
Commit
e7cf4931
authored
Oct 06, 2018
by
Jack Andersen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert to pragma once
parent
fafcfaa5
Changes
32
Hide whitespace changes
Inline
Side-by-side
Showing
32 changed files
with
32 additions
and
94 deletions
+32
-94
include/specter/Button.hpp
include/specter/Button.hpp
+1
-3
include/specter/Control.hpp
include/specter/Control.hpp
+1
-3
include/specter/FileBrowser.hpp
include/specter/FileBrowser.hpp
+1
-3
include/specter/FontCache.hpp
include/specter/FontCache.hpp
+1
-3
include/specter/IMenuNode.hpp
include/specter/IMenuNode.hpp
+1
-3
include/specter/IViewManager.hpp
include/specter/IViewManager.hpp
+1
-3
include/specter/Icon.hpp
include/specter/Icon.hpp
+1
-3
include/specter/Menu.hpp
include/specter/Menu.hpp
+1
-3
include/specter/MessageWindow.hpp
include/specter/MessageWindow.hpp
+1
-3
include/specter/ModalWindow.hpp
include/specter/ModalWindow.hpp
+1
-3
include/specter/MultiLineTextView.hpp
include/specter/MultiLineTextView.hpp
+1
-3
include/specter/Node.hpp
include/specter/Node.hpp
+1
-3
include/specter/NodeSocket.hpp
include/specter/NodeSocket.hpp
+1
-3
include/specter/NumericField.hpp
include/specter/NumericField.hpp
+1
-3
include/specter/Outliner.hpp
include/specter/Outliner.hpp
+1
-3
include/specter/Panel.hpp
include/specter/Panel.hpp
+1
-3
include/specter/PathButtons.hpp
include/specter/PathButtons.hpp
+1
-3
include/specter/RootView.hpp
include/specter/RootView.hpp
+1
-3
include/specter/ScrollView.hpp
include/specter/ScrollView.hpp
+1
-3
include/specter/Space.hpp
include/specter/Space.hpp
+1
-3
include/specter/SplitView.hpp
include/specter/SplitView.hpp
+1
-3
include/specter/Table.hpp
include/specter/Table.hpp
+1
-3
include/specter/TextField.hpp
include/specter/TextField.hpp
+1
-3
include/specter/TextView.hpp
include/specter/TextView.hpp
+1
-3
include/specter/Toolbar.hpp
include/specter/Toolbar.hpp
+1
-3
include/specter/Tooltip.hpp
include/specter/Tooltip.hpp
+1
-3
include/specter/Translator.hpp
include/specter/Translator.hpp
+1
-3
include/specter/View.hpp
include/specter/View.hpp
+1
-3
include/specter/ViewResources.hpp
include/specter/ViewResources.hpp
+1
-3
include/specter/genie.hpp
include/specter/genie.hpp
+1
-3
include/specter/specter.hpp
include/specter/specter.hpp
+1
-3
zeus
zeus
+1
-1
No files found.
include/specter/Button.hpp
View file @
e7cf4931
#ifndef SPECTER_BUTTON_HPP
#define SPECTER_BUTTON_HPP
#pragma once
#include "specter/TextView.hpp"
#include "specter/Control.hpp"
...
...
@@ -132,4 +131,3 @@ public:
}
#endif // SPECTER_BUTTON_HPP
include/specter/Control.hpp
View file @
e7cf4931
#ifndef SPECTER_CONTROL_HPP
#define SPECTER_CONTROL_HPP
#pragma once
#include "View.hpp"
...
...
@@ -119,4 +118,3 @@ public:
}
#endif // SPECTER_CONTROL_HPP
include/specter/FileBrowser.hpp
View file @
e7cf4931
#ifndef SPECTER_FILEBROWSER_HPP
#define SPECTER_FILEBROWSER_HPP
#pragma once
#include "View.hpp"
#include "ModalWindow.hpp"
...
...
@@ -353,4 +352,3 @@ public:
}
#endif // SPECTER_FILEBROWSER_HPP
include/specter/FontCache.hpp
View file @
e7cf4931
#ifndef SPECTER_FONTCACHE_HPP
#define SPECTER_FONTCACHE_HPP
#pragma once
#include <ft2build.h>
#include FT_FREETYPE_H
...
...
@@ -201,4 +200,3 @@ public:
}
#endif // SPECTER_FONTCACHE_HPP
include/specter/IMenuNode.hpp
View file @
e7cf4931
#ifndef SPECTER_IMENUNODE_HPP
#define SPECTER_IMENUNODE_HPP
#pragma once
#include "View.hpp"
...
...
@@ -17,4 +16,3 @@ struct IMenuNode
}
#endif // SPECTER_IMENUNODE_HPP
include/specter/IViewManager.hpp
View file @
e7cf4931
#ifndef SPECTER_IVIEWMANAGER_HPP
#define SPECTER_IVIEWMANAGER_HPP
#pragma once
#include "Translator.hpp"
#include "SplitView.hpp"
...
...
@@ -33,4 +32,3 @@ public:
}
#endif // SPECTER_IVIEWMANAGER_HPP
include/specter/Icon.hpp
View file @
e7cf4931
#ifndef SPECTER_ICON_HPP
#define SPECTER_ICON_HPP
#pragma once
#include "View.hpp"
...
...
@@ -71,4 +70,3 @@ public:
}
#endif // SPECTER_ICON_HPP
include/specter/Menu.hpp
View file @
e7cf4931
#ifndef SPECTER_MENU_HPP
#define SPECTER_MENU_HPP
#pragma once
#include "View.hpp"
#include "TextView.hpp"
...
...
@@ -92,4 +91,3 @@ public:
}
#endif // SPECTER_MENU_HPP
include/specter/MessageWindow.hpp
View file @
e7cf4931
#ifndef SPECTER_MESSAGEWINDOW_HPP
#define SPECTER_MESSAGEWINDOW_HPP
#pragma once
#include "ModalWindow.hpp"
#include "MultiLineTextView.hpp"
...
...
@@ -75,4 +74,3 @@ public:
}
#endif // SPECTER_MESSAGEWINDOW_HPP
include/specter/ModalWindow.hpp
View file @
e7cf4931
#ifndef SPECTER_MODAL_WINDOW_HPP
#define SPECTER_MODAL_WINDOW_HPP
#pragma once
#include <specter/View.hpp>
#include <specter/MultiLineTextView.hpp>
...
...
@@ -83,4 +82,3 @@ public:
}
#endif // SPECTER_MODAL_WINDOW_HPP
include/specter/MultiLineTextView.hpp
View file @
e7cf4931
#ifndef SPECTER_MULTILINETEXTVIEW_HPP
#define SPECTER_MULTILINETEXTVIEW_HPP
#pragma once
#include "View.hpp"
#include "TextView.hpp"
...
...
@@ -52,4 +51,3 @@ public:
}
#endif // SPECTER_MULTILINETEXTVIEW_HPP
include/specter/Node.hpp
View file @
e7cf4931
#ifndef SPECTER_NODE_HPP
#define SPECTER_NODE_HPP
#pragma once
#endif // SPECTER_NODE_HPP
include/specter/NodeSocket.hpp
View file @
e7cf4931
#ifndef SPECTER_NODESOCKET_HPP
#define SPECTER_NODESOCKET_HPP
#pragma once
#endif // SPECTER_NODESOCKET_HPP
include/specter/NumericField.hpp
View file @
e7cf4931
#ifndef SPECTER_NUMERICFIELD_HPP
#define SPECTER_NUMERICFIELD_HPP
#pragma once
#include "specter/TextView.hpp"
...
...
@@ -51,4 +50,3 @@ public:
}
#endif // SPECTER_NUMERICFIELD_HPP
include/specter/Outliner.hpp
View file @
e7cf4931
#ifndef SPECTER_OUTLINER_HPP
#define SPECTER_OUTLINER_HPP
#pragma once
namespace
specter
{
...
...
@@ -41,4 +40,3 @@ class Outliner
};
}
#endif // SPECTER_OUTLINER_HPP
\ No newline at end of file
include/specter/Panel.hpp
View file @
e7cf4931
#ifndef SPECTER_PANEL_HPP
#define SPECTER_PANEL_HPP
#pragma once
#endif // SPECTER_PANEL_HPP
include/specter/PathButtons.hpp
View file @
e7cf4931
#ifndef SPECTER_PATHBUTTONS_HPP
#define SPECTER_PATHBUTTONS_HPP
#pragma once
#include "Button.hpp"
#include "ScrollView.hpp"
...
...
@@ -75,4 +74,3 @@ public:
}
#endif // SPECTER_PATHBUTTONS_HPP
include/specter/RootView.hpp
View file @
e7cf4931
#ifndef SPECTER_ROOTVIEW_HPP
#define SPECTER_ROOTVIEW_HPP
#pragma once
#include "View.hpp"
#include "ViewResources.hpp"
...
...
@@ -252,4 +251,3 @@ private:
}
#endif // SPECTER_ROOTVIEW_HPP
include/specter/ScrollView.hpp
View file @
e7cf4931
#ifndef SPECTER_SCROLLVIEW_HPP
#define SPECTER_SCROLLVIEW_HPP
#pragma once
#include "Button.hpp"
#include "IViewManager.hpp"
...
...
@@ -99,4 +98,3 @@ public:
}
#endif // SPECTER_SCROLLVIEW_HPP
include/specter/Space.hpp
View file @
e7cf4931
#ifndef SPECTER_SPACE_HPP
#define SPECTER_SPACE_HPP
#pragma once
#include "View.hpp"
#include "Toolbar.hpp"
...
...
@@ -81,4 +80,3 @@ inline Space* View::castToSpace() { return isSpace() ? static_cast<Space*>(this)
}
#endif // SPECTER_SPACE_HPP
include/specter/SplitView.hpp
View file @
e7cf4931
#ifndef SPECTER_SPLITVIEW_HPP
#define SPECTER_SPLITVIEW_HPP
#pragma once
#include "specter/View.hpp"
...
...
@@ -119,4 +118,3 @@ inline SplitView* View::castToSplitView() { return isSplitView() ? static_cast<S
}
#endif // SPECTER_SPLITVIEW_HPP
include/specter/Table.hpp
View file @
e7cf4931
#ifndef SPECTER_TABLE_HPP
#define SPECTER_TABLE_HPP
#pragma once
#include "View.hpp"
#include "ScrollView.hpp"
...
...
@@ -142,4 +141,3 @@ public:
}
#endif // SPECTER_TABLE_HPP
include/specter/TextField.hpp
View file @
e7cf4931
#ifndef SPECTER_TEXTFIELD_HPP
#define SPECTER_TEXTFIELD_HPP
#pragma once
#include "Control.hpp"
#include "TextView.hpp"
...
...
@@ -137,4 +136,3 @@ private:
}
#endif // SPECTER_TEXTFIELD_HPP
include/specter/TextView.hpp
View file @
e7cf4931
#ifndef SPECTER_TEXTVIEW_HPP
#define SPECTER_TEXTVIEW_HPP
#pragma once
#include "View.hpp"
#include "boo/graphicsdev/IGraphicsDataFactory.hpp"
...
...
@@ -131,4 +130,3 @@ private:
}
#endif // SPECTER_TEXTVIEW_HPP
include/specter/Toolbar.hpp
View file @
e7cf4931
#ifndef SPECTER_TOOLBAR_HPP
#define SPECTER_TOOLBAR_HPP
#pragma once
#include "specter/View.hpp"
...
...
@@ -75,4 +74,3 @@ public:
}
#endif // SPECTER_TOOLBAR_HPP
include/specter/Tooltip.hpp
View file @
e7cf4931
#ifndef SPECTER_TOOLTIP_HPP
#define SPECTER_TOOLTIP_HPP
#pragma once
#include "specter/View.hpp"
#include "specter/MultiLineTextView.hpp"
...
...
@@ -38,4 +37,3 @@ public:
}
#endif // SPECTER_TOOLTIP_HPP
include/specter/Translator.hpp
View file @
e7cf4931
#ifndef SPECTER_TRANSLATOR_HPP
#define SPECTER_TRANSLATOR_HPP
#pragma once
#include <string>
#include <athena/DNAYaml.hpp>
...
...
@@ -33,4 +32,3 @@ public:
}
#endif // SPECTER_TRANSLATOR_HPP
include/specter/View.hpp
View file @
e7cf4931
#ifndef SPECTER_VIEW_HPP
#define SPECTER_VIEW_HPP
#pragma once
#include "boo/boo.hpp"
#include "optional.hpp"
...
...
@@ -394,4 +393,3 @@ struct ScissorViewChild : ViewChild<ViewPtrType>
}
#endif // SPECTER_VIEW_HPP
include/specter/ViewResources.hpp
View file @
e7cf4931
#ifndef SPECTER_VIEWRESOURCES_HPP
#define SPECTER_VIEWRESOURCES_HPP
#pragma once
#include "TextView.hpp"
#include "SplitView.hpp"
...
...
@@ -218,4 +217,3 @@ public:
};
}
// namespace specter
#endif // SPECTER_VIEWRESOURCES_HPP
include/specter/genie.hpp
View file @
e7cf4931
#ifndef __SPECTER_GENIE_HPP__
#define __SPECTER_GENIE_HPP__
#pragma once
#if __specter__
#define SPECTER_PROPERTY(n, d) \
...
...
@@ -12,4 +11,3 @@
#endif
#endif //__SPECTER_GENIE_HPP__
include/specter/specter.hpp
View file @
e7cf4931
#ifndef SPECTER_HPP
#define SPECTER_HPP
#pragma once
#include "View.hpp"
#include "RootView.hpp"
...
...
@@ -18,4 +17,3 @@
#include "FontCache.hpp"
#include "ViewResources.hpp"
#endif // SPECTER_HPP
zeus
@
20603da6
Subproject commit
11cd08a30a676f3a18a8ab4d586a6bf9c31f1976
Subproject commit
20603da60d9f3b9adada4f0ccc81e2fc9a27828c
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