view interps/rail/src/lib.h @ 12500:e48c08805365 draft default tip

<b_jonas> ` learn \'The password of the month is Cthulhuquagdonic Mothraquagdonic Narwhalicorn.\' # https://logs.esolangs.org/libera-esolangs/2024-04.html#lKE Infinite craft
author HackEso <hackeso@esolangs.org>
date Wed, 01 May 2024 06:39:10 +0000
parents 859f9b4339e6
children
line wrap: on
line source

// lib.h

#ifndef LIB_H_RAIL_1
#define LIB_H_RAIL_1

#include <vector>
#include <list>
#include <string>
#include <map>
#include <sstream>
#include <iostream>
#include <fstream>

class InternalException : public std::exception
{
public:
  explicit InternalException(std::string const & newLabel)
    : label(newLabel)
  {
  }

  virtual ~InternalException() throw() {}

  virtual char const * what() const throw()
  {
    return label.c_str();
  }
private:
  std::string label;
};

class ArgumentException : public std::exception
{
public:
  explicit ArgumentException(std::string const & newLabel)
    : label(newLabel)
  {
  }

  virtual ~ArgumentException() throw() {}

  virtual char const * what() const throw()
  {
    return label.c_str();
  }
private:
  std::string label;
};

std::string intToString(int num);

class Binding;

extern Binding NIL;

namespace args
{
  extern bool isBatch;
  extern std::ostream * output;
  extern std::istream * input;
  extern std::list<std::string> sourceFiles;
}

#endif