This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Prosta klasa parsera | |
// Jest oznaczona EXCEPT, to znaczy, że każda funkcja z tej klasy może rzucić wyjątek | |
class EXCEPT TextParser { | |
TextParser &operator>>(double &); | |
TextParser &operator>>(bool &); | |
... | |
}; | |
struct Params { | |
string name; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Prosta klasa parsera | |
// Jest oznaczona EXCEPT, to znaczy, że każda funkcja z tej klasy może rzucić wyjątek | |
class EXCEPT TextParser { | |
TextParser &operator>>(double &); | |
TextParser &operator>>(bool &); | |
... | |
}; | |
struct Params { | |
string name; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright (C) Krzysztof Jakubowski <[email protected]> | |
// This file is part of libfwk. See license.txt for details. | |
#pragma once | |
#include "fwk/base_vector.h" | |
#include "fwk/span.h" | |
#include "fwk/sys_base.h" | |
namespace fwk { |
OlderNewer