#include <graphene/db/generic_index.hpp>
#include <graphene/protocol/asset.hpp>
#include <boost/multi_index/composite_key.hpp>
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/identity.hpp>
#include <fc/static_variant.hpp>
#include <fc/uint128.hpp>
Go to the source code of this file.
|
typedef fc::static_variant< linear_vesting_policy, cdd_vesting_policy, instant_vesting_policy > | graphene::chain::vesting_policy |
|
typedef multi_index_container< vesting_balance_object, indexed_by< ordered_unique< tag< by_id >, member< object, object_id_type, &object::id > >, ordered_non_unique< tag< by_account >, member< vesting_balance_object, account_id_type, &vesting_balance_object::owner > >, hashed_unique< tag< by_vesting_type >, identity< vesting_balance_object >, detail::vesting_balance_object_hash, detail::vesting_balance_object_equal > > > | graphene::chain::vesting_balance_multi_index_type |
|
typedef generic_index< vesting_balance_object, vesting_balance_multi_index_type > | graphene::chain::vesting_balance_index |
|