/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/interface/FWExpressionException.h
51 строка
1 KB
Cms Build
Clang-Format
20 май 2019, 13:07
20 май 2019, 13:07
6684288
Код
Авторство
О чём код?
#ifndef Fireworks_Core_FWExpressionException_h #define Fireworks_Core_FWExpressionException_h // -*- C++ -*- // // Package: Core // Class : FWExpressionException // /**\class FWExpressionException FWExpressionException.h Fireworks/Core/interface/FWExpressionException.h Description: Holds information about an expression parsing failure Usage: <usage> */ // // Original Author: Chris Jones // Created: Thu Aug 21 14:22:22 EDT 2008 // // system include files #include <string> // user include files // forward declarations class FWExpressionException { public: FWExpressionException(const std::string& iWhat, long iColumn) : m_what(iWhat), m_column(iColumn) {} //virtual ~FWExpressionException(); // ---------- const member functions --------------------- const std::string& what() const { return m_what; } long column() const { return m_column; } // ---------- static member functions -------------------- // ---------- member functions --------------------------- private: //FWExpressionException(const FWExpressionException&); // stop default //const FWExpressionException& operator=(const FWExpressionException&); // stop default // ---------- member data -------------------------------- std::string m_what; long m_column; }; #endif