1 /* 2 * Copyright 2012, Haiku, Inc. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _PICTURE_PRIVATE_H 6 #define _PICTURE_PRIVATE_H 7 8 9 #include <Picture.h> 10 #include <OS.h> 11 12 13 void reconnect_pictures_to_app_server(); 14 15 16 class BPicture::Private { 17 public: 18 Private(BPicture* picture); 19 void ReconnectToAppServer(); 20 private: 21 BPicture* fPicture; 22 }; 23 24 25 #endif // _PICTURE_PRIVATE_H 26