Use full names for files

This commit is contained in:
ReinUsesLisp 2018-10-23 05:10:47 -03:00
parent 8c1ab76ce5
commit 0863cd49c9
4 changed files with 0 additions and 0 deletions

29
src/literal-string.h Normal file
View file

@ -0,0 +1,29 @@
/* This file is part of the sirit project.
* Copyright (c) 2018 ReinUsesLisp
* This software may be used and distributed according to the terms of the GNU
* Lesser General Public License version 2.1 or any later version.
*/
#pragma once
#include "operand.h"
#include "stream.h"
#include <string>
namespace Sirit {
class LiteralString : public Operand {
public:
LiteralString(const std::string& string);
~LiteralString();
virtual void Fetch(Stream& stream) const;
virtual u16 GetWordCount() const;
virtual bool operator==(const Operand& other) const;
private:
std::string string;
};
} // namespace Sirit