mirror of https://github.com/procxx/kepka.git
				
				
				
			
		
			
				
	
	
		
			44 lines
		
	
	
		
			1011 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1011 B
		
	
	
	
		
			C++
		
	
	
	
/*
 | 
						|
This file is part of Telegram Desktop,
 | 
						|
the official desktop application for the Telegram messaging service.
 | 
						|
 | 
						|
For license and copyright information please follow this link:
 | 
						|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | 
						|
*/
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "base/object_ptr.h"
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
class RpWidget;
 | 
						|
} // namespace Ui
 | 
						|
 | 
						|
namespace Info {
 | 
						|
 | 
						|
class Controller;
 | 
						|
 | 
						|
namespace Profile {
 | 
						|
 | 
						|
object_ptr<Ui::RpWidget> SetupDetails(
 | 
						|
	not_null<Controller*> controller,
 | 
						|
	not_null<Ui::RpWidget*> parent,
 | 
						|
	not_null<PeerData*> peer);
 | 
						|
 | 
						|
object_ptr<Ui::RpWidget> SetupActions(
 | 
						|
	not_null<Controller*> controller,
 | 
						|
	not_null<Ui::RpWidget*> parent,
 | 
						|
	not_null<PeerData*> peer);
 | 
						|
 | 
						|
object_ptr<Ui::RpWidget> SetupChannelMembers(
 | 
						|
	not_null<Controller*> controller,
 | 
						|
	not_null<Ui::RpWidget*> parent,
 | 
						|
	not_null<PeerData*> peer);
 | 
						|
// // #feed
 | 
						|
//object_ptr<Ui::RpWidget> SetupFeedDetails(
 | 
						|
//	not_null<Controller*> controller,
 | 
						|
//	not_null<Ui::RpWidget*> parent,
 | 
						|
//	not_null<Data::Feed*> feed);
 | 
						|
 | 
						|
} // namespace Profile
 | 
						|
} // namespace Info
 |