2011-09-01 02:48:32 +00:00
|
|
|
#ifndef SPROUT_OPERATION_FIT_HPP
|
|
|
|
#define SPROUT_OPERATION_FIT_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/operation/fit/realign.hpp>
|
|
|
|
#include <sprout/operation/fit/realign_to.hpp>
|
|
|
|
#include <sprout/operation/fit/resize.hpp>
|
|
|
|
#include <sprout/operation/fit/resize_backward.hpp>
|
|
|
|
#include <sprout/operation/fit/push_back.hpp>
|
|
|
|
#include <sprout/operation/fit/push_back_n.hpp>
|
|
|
|
#include <sprout/operation/fit/push_front.hpp>
|
|
|
|
#include <sprout/operation/fit/push_front_n.hpp>
|
|
|
|
#include <sprout/operation/fit/pop_back.hpp>
|
|
|
|
#include <sprout/operation/fit/pop_back_n.hpp>
|
|
|
|
#include <sprout/operation/fit/pop_front.hpp>
|
|
|
|
#include <sprout/operation/fit/pop_front_n.hpp>
|
|
|
|
#include <sprout/operation/fit/insert.hpp>
|
|
|
|
#include <sprout/operation/fit/insert_n.hpp>
|
|
|
|
#include <sprout/operation/fit/erase.hpp>
|
|
|
|
#include <sprout/operation/fit/erase_n.hpp>
|
2011-09-26 08:25:57 +00:00
|
|
|
#include <sprout/operation/fit/append.hpp>
|
|
|
|
#include <sprout/operation/fit/append_back.hpp>
|
|
|
|
#include <sprout/operation/fit/append_front.hpp>
|
2011-10-18 08:13:16 +00:00
|
|
|
#include <sprout/operation/fit/set.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_OPERATION_FIT_HPP
|