31 #include <xlnt/xlnt_config.hpp> 93 variant(
const std::string &value);
118 variant(
const std::initializer_list<std::int32_t> &value);
123 variant(
const std::vector<std::int32_t> &value);
128 variant(
const std::initializer_list<const char *> &value);
133 variant(
const std::vector<const char *> &value);
138 variant(
const std::initializer_list<std::string> &value);
143 variant(
const std::vector<std::string> &value);
148 variant(
const std::initializer_list<bool> &value);
153 variant(
const std::vector<bool> &value);
158 variant(
const std::initializer_list<datetime> &value);
163 variant(
const std::vector<datetime> &value);
168 variant(
const std::vector<variant> &value);
173 bool is(
type t)
const;
179 template <
typename T>
185 type value_type()
const;
193 void construct_vector_internal(
const T &vec);
196 std::vector<T> get_vector_internal()
const;
199 std::vector<variant> vector_value_;
200 std::int32_t i4_value_;
201 std::string lpstr_value_;
223 XLNT_API std::vector<std::int32_t>
variant::get()
const;
type
The possible types a variant can hold.
Definition: variant.hpp:48
Represents an object that can have variable type.
Definition: variant.hpp:40
T get() const
Returns the value of this variant as type T. An exception will be thrown if the types are not convert...
Enumerates the possible types a cell can be determined by it's current value.
Definition: cell.hpp:36
bool operator!=(std::nullptr_t, const cell &cell)
Returns true if this cell is initialized.
bool operator==(std::nullptr_t, const cell &cell)
Returns true if this cell is uninitialized.
value is an ISO 8601 formatted date
A datetime is a combination of a date and a time. IMPORTANT: The datetime could be in an empty/invali...
Definition: datetime.hpp:41