How to include built-in plugin .h file?

I need to include built-in remote session plugin header files,

Path is …\Engine\Plugins\Experimental\RemoteSession\Source\RemoteSession

And …\Engine\Plugins\Experimental\RemoteSession\Source\RemoteSession\Channels

But how to include those path in to my project custom plug-in?

I just solved the problem my self.
Just Open *.Build.cs and add plugin name in here

	PublicDependencyModuleNames.AddRange(
		new string[]
		{

           "RemoteSession",
                               
			// ... add other public dependencies that you statically link with here ...
		}
	);