coan  6.0.1
A C/C++ Configuration Analyzer
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
path.h File Reference
#include "platform.h"
#include <vector>
#include <string>
#include <stdexcept>

Go to the source code of this file.

Classes

struct  path< Delim >
 Encapsulates a filesystem path. More...
 

Typedefs

using path_t = path< PATH_DELIM >
 Alias path_t according to host system path delimiter.
 

Functions

template<char Delim>
path< Delim > operator+ (std::string const &str, path< Delim > const &path)
 Get a path by concatenation of a string with a path. More...
 

Detailed Description

This file defines struct path.

Definition in file path.h.

Function Documentation

template<char Delim>
path<Delim> operator+ ( std::string const &  str,
path< Delim > const &  path 
)

Get a path by concatenation of a string with a path.

Template Parameters
DelimThe host system's path delimiter.
Parameters
strThe lefthand operand
pathThe righthand operand
Returns
The path resulting from concatenation of str and path

The cursor of the new path is initialized to 0

Definition at line 444 of file path.h.