XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
source_location.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 #include <xtd/xtd.hpp>
8 #include <string.h>
9 namespace xtd{
10 
12 #define here() xtd::source_location(__FILE__,__LINE__)
13 
18  public:
19  source_location(const char * File, int Line) : _file(File), _line(Line){}
20  source_location(const source_location& src) : _file(src._file), _line(src._line){}
21  source_location& operator=(const source_location& src){
22  if (this == &src){
23  return *this;
24  }
25  _file = src._file;
26  _line = src._line;
27  return *this;
28  }
29  const char * file() const{ return _file; }
30 
31  int line() const{ return _line; }
32 
33  bool operator==(const source_location& src) const{
34  if (_line != src._line){
35  return false;
36  }
37  return 0==strcmp(_file, src._file);
38  }
39 
40  bool operator<(const source_location& src) const{
41  if (strcmp(_file, src._file) < 0){
42  return true;
43  }
44  return _line < src._line;
45  }
46  private:
47  const char * _file;
48  int _line;
49  };
50 }
host, target and build configurations and settings Various components are purpose built for specific ...
Contains information about the location of source code Used in error reporting and logging...