Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 36ddeb98 authored by Johnny Jazeix's avatar Johnny Jazeix
Browse files

Ajout des fichiers (non remplis) pour le parser

parent d37357e8
No related branches found
No related tags found
No related merge requests found
#ifndef LINE_HPP
#define LINE_HPP
#include <string>
/*! \class Line Line.hpp "../parser/src/Line.hpp"
* Contains the definition of a line.
*/
class Line{
private:
std::string _content;
public:
/*!
* \brief Constructor
*
* Constructor for the line
*/
Line();
/*!
* \brief Constructor
* Constructor for the line
* \param : A reference of the line to be copied
*/
Line(Line &);
/*!
* \brief Destructor
* Destroy the line
*/
~Line();
/*!
* \param : the string we want to know if the line starts with it
* \return : true if ths line starts with the param, false else
*/
bool Starts_with(std::string &);
};
#endif // LINE_HPP
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment