X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/22cb2560274e05e6490cf964cbbeb74a1991c642..46b0747592074017ff0ea4b33d4a7194235886e5:/include/stg/user_traff.h diff --git a/include/stg/user_traff.h b/include/stg/user_traff.h index d820588e..5abcee33 100644 --- a/include/stg/user_traff.h +++ b/include/stg/user_traff.h @@ -29,10 +29,10 @@ #include "resetable.h" #include "const.h" -#include "os_int.h" #include #include +#include enum TRAFF_DIRECTION {TRAFF_UPLOAD, TRAFF_DOWNLOAD}; @@ -78,6 +78,7 @@ return o; class DIR_TRAFF_RES { public: + typedef RESETABLE value_type; typedef RESETABLE ValueType; typedef std::vector ContainerType; typedef ContainerType::size_type IndexType; @@ -97,6 +98,7 @@ public: } const ValueType & operator[](IndexType idx) const { return traff[idx]; } ValueType & operator[](IndexType idx) { return traff[idx]; } + IndexType size() const { return traff.size(); } DIR_TRAFF GetData() const { DIR_TRAFF res;