Sleeping Wombat Common Library  0.50.0
swCommonLibrary
fwd.h
1 /*
2  fwd.h -- Forward declarations for path.h and resolver.h
3 
4  Copyright (c) 2015 Wenzel Jakob <wenzel@inf.ethz.ch>
5 
6  All rights reserved. Use of this source code is governed by a
7  BSD-style license that can be found in the LICENSE file.
8 */
9 
10 #pragma once
11 
12 #if !defined(NAMESPACE_BEGIN)
13 #define NAMESPACE_BEGIN(name) namespace name {
14 #endif
15 #if !defined(NAMESPACE_END)
16 #define NAMESPACE_END(name) }
17 #endif
18 
19 NAMESPACE_BEGIN(filesystem)
20 
21 class path_impl;
22 class resolver;
23 
24 NAMESPACE_END(filesystem)
Simple class for resolving paths on Linux/Windows/Mac OS.
Definition: resolver.h:23
Definition: Dir.cpp:12
Simple class for manipulating paths on Linux/Windows/Mac OS.
Definition: path.h:33