mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
fix includes, fix naming convention
This commit is contained in:
parent
83df85f274
commit
814d75d1c7
@ -1,10 +1,4 @@
|
||||
|
||||
#include <bits/std_function.h> // for function
|
||||
#include <stdexcept> // for runtime_error
|
||||
#include <type_traits> // for declval, enable_if, false_type, is_co...
|
||||
#include <typeinfo> // for type_info
|
||||
#include <utility> // for move, swap, pair
|
||||
|
||||
#include "archive.hpp"
|
||||
|
||||
#ifndef WIN32
|
||||
|
@ -129,7 +129,7 @@ namespace ngcore
|
||||
|
||||
bool Output () const { return is_output; }
|
||||
bool Input () const { return !is_output; }
|
||||
virtual const VersionInfo& getVersion(const std::string& library) = 0;
|
||||
virtual const VersionInfo& GetVersion(const std::string& library) = 0;
|
||||
|
||||
// Pure virtual functions that have to be implemented by In-/OutArchive
|
||||
virtual Archive & operator & (double & d) = 0;
|
||||
@ -525,7 +525,7 @@ namespace ngcore
|
||||
BinaryOutArchive& operator=(const BinaryOutArchive&) = delete;
|
||||
BinaryOutArchive& operator=(BinaryOutArchive&&) = delete;
|
||||
|
||||
const VersionInfo& getVersion(const std::string& library) override
|
||||
const VersionInfo& GetVersion(const std::string& library) override
|
||||
{ return GetLibraryVersions()[library]; }
|
||||
|
||||
using Archive::operator&;
|
||||
@ -601,7 +601,7 @@ namespace ngcore
|
||||
BinaryInArchive (const std::string& filename)
|
||||
: BinaryInArchive(std::make_shared<std::ifstream>(filename)) { ; }
|
||||
|
||||
const VersionInfo& getVersion(const std::string& library) override
|
||||
const VersionInfo& GetVersion(const std::string& library) override
|
||||
{ return vinfo[library]; }
|
||||
|
||||
using Archive::operator&;
|
||||
@ -669,7 +669,7 @@ namespace ngcore
|
||||
TextOutArchive (const std::string& filename) :
|
||||
TextOutArchive(std::make_shared<std::ofstream>(filename)) { }
|
||||
|
||||
const VersionInfo& getVersion(const std::string& library) override
|
||||
const VersionInfo& GetVersion(const std::string& library) override
|
||||
{ return GetLibraryVersions()[library]; }
|
||||
|
||||
using Archive::operator&;
|
||||
@ -725,7 +725,7 @@ namespace ngcore
|
||||
TextInArchive (const std::string& filename)
|
||||
: TextInArchive(std::make_shared<std::ifstream>(filename)) {}
|
||||
|
||||
const VersionInfo& getVersion(const std::string& library) override
|
||||
const VersionInfo& GetVersion(const std::string& library) override
|
||||
{ return vinfo[library]; }
|
||||
|
||||
using Archive::operator&;
|
||||
|
@ -239,8 +239,8 @@ void testMultipleInheritance(Archive& in, Archive& out)
|
||||
void testLibraryVersion(Archive& in, Archive& out)
|
||||
{
|
||||
SetLibraryVersion("netgen","v6.2.1812");
|
||||
CHECK(in.getVersion("netgen") == "v6.2.1811");
|
||||
CHECK(out.getVersion("netgen") == "v6.2.1812");
|
||||
CHECK(in.GetVersion("netgen") == "v6.2.1811");
|
||||
CHECK(out.GetVersion("netgen") == "v6.2.1812");
|
||||
}
|
||||
|
||||
void testArchive(Archive& in, Archive& out)
|
||||
|
Loading…
Reference in New Issue
Block a user