1 /* Any copyright is dedicated to the Public Domain. 2 * http://creativecommons.org/publicdomain/zero/1.0/ */ 3 4 #ifndef A_MESSAGE_H_ 5 #define A_MESSAGE_H_ 6 7 #include <utils/RefBase.h> 8 9 namespace stagefright { 10 11 struct AMessage : public RefBase { 12 public: postAMessage13 void post() {} 14 }; 15 16 } 17 18 #endif 19