OpenMiner  0.0.1a
Voxel game engine
Public Member Functions | Public Attributes | List of all members
sol::container_detail::error_result Struct Reference

#include <sol.hpp>

Public Member Functions

 error_result ()
 
 error_result (int results)
 
 error_result (const char *fmt_, const char *msg)
 

Public Attributes

int results
 
const char * fmt_
 
std::array< const char *, 4 > args
 

Constructor & Destructor Documentation

§ error_result() [1/3]

sol::container_detail::error_result::error_result ( )
inline
16677  : results(0), fmt_(nullptr) {
16678  }
int results
Definition: sol.hpp:16673
const char * fmt_
Definition: sol.hpp:16674

§ error_result() [2/3]

sol::container_detail::error_result::error_result ( int  results)
inline
16680  : results(results), fmt_(nullptr) {
16681  }
int results
Definition: sol.hpp:16673
const char * fmt_
Definition: sol.hpp:16674

§ error_result() [3/3]

sol::container_detail::error_result::error_result ( const char *  fmt_,
const char *  msg 
)
inline
16683  : results(0), fmt_(fmt_) {
16684  args[0] = msg;
16685  }
int results
Definition: sol.hpp:16673
const char * fmt_
Definition: sol.hpp:16674
std::array< const char *, 4 > args
Definition: sol.hpp:16675

Member Data Documentation

§ args

std::array<const char*, 4> sol::container_detail::error_result::args

§ fmt_

const char* sol::container_detail::error_result::fmt_

§ results

int sol::container_detail::error_result::results

The documentation for this struct was generated from the following file: