aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2013-06-22 15:50:23 +0000
committerdos-reis <gdr@axiomatics.org>2013-06-22 15:50:23 +0000
commitbb00e7ae1951a75626e0ddeef919a7ebe0434cf3 (patch)
tree0cc9de51ca6f7fbf77918d119b72297ebd3b1083 /src/include
parent14641621504f22a7c6874421d94b1f399666b336 (diff)
downloadopen-axiom-bb00e7ae1951a75626e0ddeef919a7ebe0434cf3.tar.gz
Add SourceFile.H
Diffstat (limited to 'src/include')
-rw-r--r--src/include/Input.H8
-rw-r--r--src/include/SourceFile.H53
-rw-r--r--src/include/dialect.H3
3 files changed, 55 insertions, 9 deletions
diff --git a/src/include/Input.H b/src/include/Input.H
index 8da6a833..fa4555b8 100644
--- a/src/include/Input.H
+++ b/src/include/Input.H
@@ -102,14 +102,6 @@ namespace OpenAxiom {
iterator end() const { return { this, size() }; }
Line line(LineNumber, const Text&);
};
-
- // -- Span --
- struct Span : structure::binary<Ordinal, Cardinal> {
- constexpr Span(Ordinal c, Cardinal l)
- : structure::binary<Ordinal>(c, l) { }
- constexpr Ordinal column() const { return first(); }
- constexpr Cardinal size() const { return second(); }
- };
}
}
diff --git a/src/include/SourceFile.H b/src/include/SourceFile.H
new file mode 100644
index 00000000..41b085a3
--- /dev/null
+++ b/src/include/SourceFile.H
@@ -0,0 +1,53 @@
+// -*- C++ -*-
+// Copyright (C) 2013, Gabriel Dos Reis.
+// All rights reserved.
+// Written by Gabriel Dos Reis.
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// - Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+//
+// - Redistributions in binary form must reproduce the above copyright
+// notice, this list of conditions and the following disclaimer in
+// the documentation and/or other materials provided with the
+// distribution.
+//
+// - Neither the name of OpenAxiom, nor the names of its contributors may
+// be used to endorse or promote products derived from this software
+// without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
+// OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+#ifndef OPENAXIOM_SOURCEFILE_included
+#define OPENAXIOM_SOURCEFILE_included
+
+#include <open-axiom/FileMapping>
+
+namespace OpenAxiom {
+ namespace Input {
+ // -- SourceFile --
+ struct SourceFile : Memory::FileMapping {
+ explicit SourceFile(const std::string&);
+ const std::string& pathname() const { return path; }
+ private:
+ std::string path;
+ SourceFile(const SourceFile&) = delete;
+ SourceFile& operator=(const SourceFile&) = delete;
+ }
+ }
+}
+
+#endif // OPENAXIOM_SOURCEFILE_included
diff --git a/src/include/dialect.H b/src/include/dialect.H
index a471981d..f63eac04 100644
--- a/src/include/dialect.H
+++ b/src/include/dialect.H
@@ -34,8 +34,9 @@
#define OPENAXIOM_DIALECT_included
namespace OpenAxiom {
+ // Languages for which we have parsers.
enum class Language {
- Spad, Boot
+ Spad, Boot, Lisp
};
}