Advertisement
voidpointer

Untitled

May 12th, 2014
594
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1.  
  2. ///////////////////////////////////////////////////////////////////////////////
  3. ///
  4. ///////////////////////////////////////////////////////////////////////////////
  5. void CAndroidOperatingSystem::SendIntent(const char* actionName, CSerializable const& data)
  6. {
  7.    /// \hack CSerializable is not const friendly
  8.    SendIntent(actionName, const_cast<CSerializable&>(data).Serialize());
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement