This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Builder for [Preview] that takes in a [WeakReference] of the view finder and | |
* [PreviewConfig], then instantiates a [Preview] which automatically | |
* resizes and rotates reacting to config changes. | |
*/ | |
class AutoFitPreviewBuilder private constructor(config: PreviewConfig, | |
viewFinderRef: WeakReference<TextureView>) { | |
/** Public instance of preview use-case which can be used by consumers of this adapter */ | |
val useCase: Preview |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use [DATABASE_NAME]; | |
DECLARE @Table NVARCHAR(MAX) | |
DECLARE @Col NVARCHAR(MAX) | |
DECLARE Table_Cursor CURSOR | |
FOR | |
--پيدا کردن تمام فيلدهاي متني تمام جداول ديتابيس جاري | |
SELECT a.name, --table | |
b.name --col | |
FROM sysobjects a, | |
syscolumns b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
interface iBoundingBox { | |
/** | |
* Récupère les coordonnées de la BoundingBox | |
*/ | |
public function getCoords(); | |
/** | |
* Fusionne 2 BoundingBox et retourne une BoundingBox qui contient les 2 précédentes. | |
*/ |